UNPKG

@selenite/commons

Version:

This typescript package provides a set of frequently used utilities, types and svelte actions for building projects with Typescript and Svelte.

3 lines (2 loc) 209 B
export declare function getProperties<T extends object>(obj: T): (keyof T)[]; export declare function applyParams<T extends object>(target: T, constructor: new () => T, params: Record<string, unknown>): void;