Type alias FileSystemShortHands

FileSystemShortHands: {
    addPublicExchangeKey: ((fs: FileSystem) => Promise<void>);
    addSampleData: ((fs: FileSystem) => Promise<void>);
    hasPublicExchangeKey: ((fs: FileSystem) => Promise<boolean>);
    load: ((username: string) => Promise<FileSystem>);
    recover: ((params: RecoverFileSystemParams) => Promise<{
        success: boolean;
    }>);
}

Type declaration

Generated using TypeDoc