UNPKG

@datalayer/core

Version:
11 lines (10 loc) 281 B
export declare const asSecret: (s: any) => ISecret; export type ISecretVariant = 'generic' | 'password' | 'key' | 'token'; export type ISecret = { id: string; variant: ISecretVariant; name: string; description: string; value: string; }; export default ISecret;