Type alias Implementation

Implementation: {
    fileSystem: {
        hooks: {
            afterLoadExisting: ((fs: API, account: AssociatedIdentity, dataComponents: DataComponents) => Promise<void>);
            afterLoadNew: ((fs: API, account: AssociatedIdentity, dataComponents: DataComponents) => Promise<void>);
            beforeLoadExisting: ((cid: CID, account: AssociatedIdentity, dataComponents: DataComponents) => Promise<void>);
            beforeLoadNew: ((account: AssociatedIdentity, dataComponents: DataComponents) => Promise<void>);
        };
    };
    log: ((...args: unknown[]) => void);
    warn: ((...args: unknown[]) => void);
    wnfsWasmLookup: ((wnfsVersion: string) => Promise<BufferSource | Response>);
}

Type declaration

Generated using TypeDoc