UNPKG

@allgemein/expressions

Version:
14 lines (13 loc) 281 B
import { Selector } from "./Selector"; export declare class KeyDesc extends Selector { readonly type: string; readonly key: string; constructor(key: string); toJson(): { $key: string; }; } /** * Key */ export declare function Key(k: string): KeyDesc;