Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

FileSystemShortHands

type 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

§
{
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;
}
>
;
}
[src]