UNPKG

json-schema-library

Version:

Customizable and hackable json-validator and json-schema utilities for traversal, data generation and validation

4 lines (3 loc) 135 B
export declare function pick<T extends { [P in keyof T]: unknown; }, K extends keyof T>(value: T, ...properties: K[]): Pick<T, K>;