UNPKG

@altostra/core

Version:

Core library for shared types and logic

8 lines (7 loc) 322 B
import type { TypeValidation } from '@altostra/type-validations'; import type { ResourceBase } from "./Common"; export declare type ManagedKeyType = 'resource.key-management.key'; export interface ManagedKey extends ResourceBase { type: ManagedKeyType; } export declare const isManagedKey: TypeValidation<ManagedKey>;