DocSpace-buildtools/packages/common/index.d.ts

13 lines
237 B
TypeScript
Raw Normal View History

2022-11-16 12:23:15 +00:00
type TFuncType = (key: string) => string;
type HTMLElementEvent<T extends HTMLElement> = Event & {
target: T;
};
interface IProvider {
linked: boolean;
provider: string;
url: string;
}
type ProvidersType = IProvider[];