DocSpace-client/packages/common/index.d.ts
2022-11-16 17:23:15 +05:00

13 lines
237 B
TypeScript

type TFuncType = (key: string) => string;
type HTMLElementEvent<T extends HTMLElement> = Event & {
target: T;
};
interface IProvider {
linked: boolean;
provider: string;
url: string;
}
type ProvidersType = IProvider[];