UNPKG

unleash-server

Version:

Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.

12 lines 445 B
import type { Store } from '../../types/stores/store.js'; export interface ISettingInsert { name: string; content: any; } export interface ISettingStore extends Store<any, string> { insert<T>(name: string, content: T): Promise<void>; updateRow(name: string, content: any): Promise<void>; postgresVersion(): Promise<string>; get<T>(name: string): Promise<T | undefined>; } //# sourceMappingURL=settings-store-type.d.ts.map