@altostra/core
Version:
Core library for shared types and logic
9 lines (8 loc) • 465 B
TypeScript
import type { ConfigurationBase } from "./common";
export declare type UserConfigurationType = 'user';
export interface UserConfiguration extends ConfigurationBase {
type: UserConfigurationType;
}
export declare const isUserConfiguration: import("@altostra/type-validations").ObjectOfTypeValidation<UserConfiguration>;
export declare type ReservedUserConfigurationKey = never;
export declare const reservedUserConfigurationKeys: ReservedUserConfigurationKey[];