UNPKG

@altostra/core

Version:

Core library for shared types and logic

8 lines (7 loc) 266 B
export declare const REF = "Ref"; export declare type RefKey = typeof REF; export interface Ref { Ref: string; } export declare const isRef: import("@altostra/type-validations").ObjectOfTypeValidation<Ref>; export declare function mkRef(logicalId: string): Ref;