@altostra/core
Version:
Core library for shared types and logic
9 lines (8 loc) • 339 B
TypeScript
import type { Dict } from "../../../../common/Types";
export declare const RESERVED_PREFIX = "ALTOSTRA__";
export interface ConfigurationBase {
type: string;
configurations: ConfigurationDataBase;
}
export declare type ConfigurationDataBase = Dict<string | null>;
export declare function isNotReservedKey(value: unknown): boolean;