@fluent-windows/core
Version:
React components that inspired by Microsoft's Fluent Design System.
9 lines (8 loc) • 352 B
TypeScript
export declare const isObject: (item: any) => boolean;
export declare const deepMerge: <T extends object = object>(target: T, ...sources: T[]) => T;
interface Target {
[key: string]: any;
}
export declare function omit(target: Target, fields: string[]): Omit<Target, string>;
export declare function toUpperCase(string: string): string;
export {};