拿掉 build files

This commit is contained in:
2022-07-18 16:33:23 +08:00
parent 41e2287bcb
commit 3707f158a3
31953 changed files with 0 additions and 4411796 deletions
-18
View File
@@ -1,18 +0,0 @@
import { LiffCore } from '../../liff';
declare type PluginName = 'bluetooth' | 'advertisement';
interface PluginModule {
default: (liff: LiffCore) => {} | Promise<{}>;
}
export interface Plugin {
checkSupport: (liff: LiffCore) => boolean;
load: () => Promise<PluginModule> | PluginModule;
errorMessage: string;
}
export declare type InitPlugins = (plugins: PluginName[]) => Promise<void[]>;
/**
* Verify and load and initialize plugins.
* @param {PluginNames} plugins - string array of plugin names
* @returns {Promise<any>}
*/
export default function createInitPlugins(liff: LiffCore, verification: any): InitPlugins;
export {};
@@ -1,3 +0,0 @@
import { Plugin } from '..';
declare const advertisement: Plugin;
export default advertisement;
@@ -1,3 +0,0 @@
import { Plugin } from '..';
declare const bluetooth: Plugin;
export default bluetooth;