11 lines
650 B
TypeScript
11 lines
650 B
TypeScript
import { ModPlatform } from '../Plugin.types';
|
|
declare type WarningArray = [string, string, string | undefined];
|
|
export declare function hasWarningsIOS(): boolean;
|
|
export declare function hasWarningsAndroid(): boolean;
|
|
export declare function addWarningAndroid(tag: string, text: string, link?: string): void;
|
|
export declare function addWarningIOS(tag: string, text: string, link?: string): void;
|
|
export declare function addWarningForPlatform(platform: ModPlatform, tag: string, text: string, link?: string): void;
|
|
export declare function flushWarningsAndroid(): WarningArray[];
|
|
export declare function flushWarningsIOS(): WarningArray[];
|
|
export {};
|