UNPKG

rune

Version:

CLI to upload your games to Rune

11 lines (10 loc) 303 B
import { Binary } from "bson"; export interface Storage { authToken: string; installer: "yarn" | "npm" | null; [key: string]: StorageValue<string | number | boolean | null | Date | Binary>; } type StorageValue<T> = T | StorageValue<T>[] | { [key: string]: StorageValue<T>; }; export {};