PeerTube/shared/models/plugins/server/plugin-constant-manager.mod...

8 lines
261 B
TypeScript

export interface ConstantManager <K extends string | number> {
addConstant: (key: K, label: string) => boolean
deleteConstant: (key: K) => boolean
getConstantValue: (key: K) => string
getConstants: () => Record<K, string>
resetConstants: () => void
}