Xivgear Types Documentation
    Preparing search index...
    interface SheetManager {
        allDisplayableSheets: PublicOnly<SheetHandleImpl>[];
        allSheets: PublicOnly<SheetHandleImpl>[];
        afterSheetListChange(): void;
        afterSheetUpdate(handle: SheetHandle): void;
        flush(): void;
        getByKey(sheetKey: string): PublicOnly<SheetHandleImpl>;
        getNextSheetInternalName(): string;
        getNextSheetNumber(): number;
        getOrCreateForKey(key: string): SheetHandle;
        newSheetFromRemote(
            saveKey: string,
            remoteVersion: number,
            summary: SheetSummary,
        ): SheetHandle;
        newSheetFromScratch(summary: SheetSummary): SheetHandle;
        reorderTo(draggedSheet: SheetHandle, draggedTo: SheetHandle): "up" | "down";
        resetAll(): void;
        resort(): void;
        saveAs(sheet: SheetExport): string;
        saveData(sheet: GearPlanSheet): void;
        setAsyncLoader(loader: SheetAsyncLoader): void;
        setUpdateHook(key: string, hook: SyncUpdateHook): void;
        syncLastSheetNumber(numFromServer: number): void;
    }

    Implemented by

    Index

    Properties

    allDisplayableSheets: PublicOnly<SheetHandleImpl>[]

    Methods