Anchorage API reference
    Preparing search index...

    Interface MaintenanceStorageTransaction

    interface MaintenanceStorageTransaction {
        get<T = unknown>(key: string): Promise<T | undefined>;
        put<T>(key: string, value: T): Promise<void>;
        setAlarm(scheduledTime: number | Date): Promise<void>;
    }
    Index

    Methods

    Methods