Hiyve Components - v1.0.0
    Preparing search index...

    Interface UseFileSessionLoaderResult

    Result from useFileSessionLoader hook

    interface UseFileSessionLoaderResult {
        error: Error | null;
        isLoading: boolean;
        loadFile: (file: FileEntry) => Promise<void>;
    }
    Index

    Properties

    error: Error | null

    Error if loading failed

    isLoading: boolean

    Whether a file is currently loading

    loadFile: (file: FileEntry) => Promise<void>

    Load a file from S3 and parse it