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

    Interface WhiteboardFileClient

    Client interface for file operations This matches the Hiyve client API

    interface WhiteboardFileClient {
        shareFile?: (
            opts: { fileId: string; userIds: string[] },
        ) => Promise<void>;
        uploadFile: (
            opts: { file: File; location: string; resourceType?: string },
        ) => Promise<{ fileId: string }>;
    }
    Index

    Properties

    shareFile?: (opts: { fileId: string; userIds: string[] }) => Promise<void>
    uploadFile: (
        opts: { file: File; location: string; resourceType?: string },
    ) => Promise<{ fileId: string }>