Documentation
    Preparing search index...

    Interface TwingFilesystemLoaderFilesystem

    interface TwingFilesystemLoaderFilesystem {
        readFile(
            path: string,
            callback: (
                error: Error | null,
                data: Buffer<ArrayBufferLike> | null,
            ) => void,
        ): void;
        stat(
            path: string,
            callback: (
                error: Error | null,
                stats: TwingFilesystemLoaderFilesystemStats | null,
            ) => void,
        ): void;
    }
    Index

    Methods

    Methods

    • Parameters

      • path: string
      • callback: (error: Error | null, data: Buffer<ArrayBufferLike> | null) => void

      Returns void