UNPKG

@aurigma/design-atoms-model

Version:

Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.

11 lines (9 loc) 235 B
import * as linq from "linq"; declare module "linq" { interface IEnumerable<T> { ofType<TOf>(type: Type<TOf>): IEnumerable<TOf>; } } export interface Type<T> extends Function { new (...args: any[]): T; }