UNPKG

@k8ts/metadata

Version:

K8ts tools for working with k8ts metadata.

14 lines 528 B
import { ValueKey } from "../key"; import type { Key } from "../key/types"; export declare namespace MetaInputParts { type Of<T extends string, V> = { [K in T]?: V; }; type Full = Nested & Of<Key.Section, Nested>; export type Nested = Of<Key.Value, string>; export type Heading = Of<Key.Section, Nested>; export type Input = Full & Heading; export {}; } export type InputMeta = MetaInputParts.Input | undefined | Iterable<readonly [ValueKey, string]>; //# sourceMappingURL=dict-input.d.ts.map