UNPKG

ts-patch

Version:

Patch typescript to support custom transformers in tsconfig.json

6 lines (5 loc) 187 B
/** * Make certain properties partial */ export type PartialSome<T, K extends keyof T> = Omit<T, K> & Pick<Partial<T>, K>; export declare function getHash(fileContent: string): string;