UNPKG

@openinc/parse-server-opendash

Version:
12 lines (11 loc) 279 B
export interface NotificationInterface { label: string; description: string; key: string; } export type FunctionKeys<T> = { [K in keyof T]: T[K] extends (...args: any[]) => any ? K : never; }[keyof T]; export interface NotificationMap { [key: string]: any; }