UNPKG

vue-yandex-maps

Version:
7 lines (6 loc) 168 B
export type PartialRecord<K extends keyof any, T> = { [P in K]?: T; }; export interface ClassType<T, P extends any[]> extends Function { new (...args: P): T; }