UNPKG

@serwist/build

Version:

A module that integrates into your build process, helping you generate a manifest of local files that should be precached.

8 lines (5 loc) 218 B
export type Equals<T, S> = [T] extends [S] ? ([S] extends [T] ? true : false) : false; export type Assignable<T, U> = [U] extends [T] ? true : false; export function assertType<_T extends true>() { // Do nothing }