Version: 0.0.20.0.30.0.70.0.80.0.100.0.110.0.160.0.170.0.220.0.230.0.240.0.250.0.260.0.270.0.280.0.290.0.300.0.310.0.320.0.330.0.340.0.350.0.360.0.370.0.380.0.390.0.400.0.410.0.420.0.430.0.440.0.450.0.460.0.470.0.590.0.600.0.610.0.620.0.630.0.640.0.650.0.660.0.670.0.680.0.690.0.700.0.710.0.720.0.730.0.740.0.750.0.760.0.770.0.780.0.790.0.800.0.810.0.820.0.830.0.87-00.0.870.0.880.0.890.0.900.0.910.0.920.0.930.0.940.0.950.0.960.0.970.0.980.0.990.0.1000.0.1010.0.1020.0.1030.0.1040.0.1050.0.1060.0.1070.0.1080.0.1090.0.1100.0.1110.0.1120.0.1131.0.0-alpha.01.0.0-alpha.11.0.0-alpha.21.0.0-alpha.31.0.0-alpha.41.0.0-alpha.51.0.0-alpha.61.0.0-alpha.71.0.0-alpha.81.0.0-alpha.91.0.0-alpha.101.0.0-alpha.111.0.0-alpha.121.0.0-alpha.131.0.0-alpha.141.0.0-alpha.151.0.0-alpha.161.0.0-alpha.171.0.0-alpha.181.0.0-alpha.191.0.0-alpha.201.0.0-alpha.211.0.0-alpha.221.0.0-alpha.231.0.0-alpha.241.0.0-alpha.251.0.0-alpha.261.0.0-alpha.271.0.0-alpha.281.0.0-alpha.291.0.0-alpha.301.0.0-alpha.311.0.0-alpha.321.0.0-alpha.331.0.0-alpha.341.0.0-alpha.351.0.0-alpha.361.0.0-alpha.371.0.0-alpha.381.0.0-alpha.391.0.0-beta.01.0.0-beta.11.0.0-beta.31.0.0-beta.41.0.0-beta.61.0.0-beta.71.0.0-beta.81.0.0-beta.101.0.0-beta.111.0.0-beta.121.0.0-beta.131.0.0-beta.141.0.0-beta.151.0.0-beta.161.0.0-beta.171.0.0-beta.181.0.0-beta.191.0.0-beta.201.0.0-beta.211.0.0-beta.221.0.0-beta.241.0.0-beta.251.0.01.1.01.1.11.2.01.2.11.3.01.4.01.5.01.5.11.5.21.5.32.0.0-beta.02.0.0-beta.12.0.02.0.12.0.22.1.02.1.12.1.22.2.02.2.12.3.02.4.02.4.12.4.22.4.3-beta.12.4.32.4.42.4.52.4.62.4.72.4.82.4.92.5.03.0.0-alpha.03.0.0-alpha.13.0.0-alpha.23.0.0-alpha.33.0.0-alpha.43.0.0-alpha.53.0.0-alpha.63.0.0-alpha.73.0.0-alpha.83.0.0-alpha.93.0.0-alpha.123.0.0-beta.03.0.0-beta.13.0.0-beta.23.0.0-beta.33.0.0-beta.63.0.0-dev-3bbbb9e4.03.0.0-dev-664c174e.03.0.0-dev-8c24fc60.03.0.0-dev-a2d8b449.03.0.0-dev-af8c8a18.03.0.0-dev-e4734d32.03.0.0-rc.03.0.0-rc.13.0.0-rc.23.0.0-rc.33.0.0-rc.43.0.03.0.13.0.23.1.03.1.13.1.23.2.03.2.13.2.23.2.33.2.43.2.53.3.03.3.13.3.23.3.33.3.43.4.03.4.13.4.23.4.33.5.03.5.13.6.04.0.0-alpha.14.0.0-alpha.24.0.0-beta.04.0.0-beta.14.0.0-nightly-2e831337.04.0.0-nightly-40b97b20.04.0.0-nightly-8520516c.04.0.0-nightly-c3aa3d6c.04.0.0-nightly-d9e553f7.04.0.0-nightly-ffa328d2.04.0.1-alpha.0
/**
* @deprecated
*/
export interface PluginRegistry {
[pluginName: string]: {
[prop: string]: any;
};
}
export interface PluginConfig {
id: string;
name: string;
export declare type ISODateString = string;
export declare type CallbackID = string;
* CancellableCallback is a simple wrapper that a method will
* return to make it easy to cancel any repeated callback the method
* might have set up. For example: a geolocation watch.
export interface CancellableCallback {
* The cancel function for this method
*
cancel: (...args: any[]) => any;