Codebase list node-ast-types / debian/latest types.ts
debian/latest

Tree @debian/latest (Download .tar.gz)

types.ts @debian/latestraw · history · blame

1
2
3
4
5
6
7
export type Fork = {
  use<T>(plugin: Plugin<T>): T;
};

export type Plugin<T> = (fork: Fork) => T;

export type Omit<T, K> = Pick<T, Exclude<keyof T, K>>;