/** An alias for `Function` */ export type Func = Function; /** The predicate tuple or arguments of array methods */ export type ArrayPredicate = [item: T, index: number, self: T[]]; /** */ export type ComponentEvent = ((e: CustomEvent) => void);