more export

This commit is contained in:
Matteo Manzinello
2020-07-21 17:09:57 +02:00
parent 63de5957d7
commit cd0f047ac0
8 changed files with 32 additions and 25 deletions

9
mailgo.d.ts vendored
View File

@@ -46,5 +46,14 @@ declare module "mailgo" {
passive?: boolean;
};
export function mailgoRender(
type: string,
mailgoElement: HTMLLinkElement
): void;
export function isMailgo(element: HTMLElement, type?: string): boolean;
export function mailgoCheckRender(event: Event): boolean;
export default function mailgo(mailgoConfig?: MailgoConfig): void;
}