react-amap-v2
Version:
高德地图 v2.0 react 组件
13 lines (12 loc) • 363 B
TypeScript
export declare enum ScriptStatus {
IDLE = "idle",
LOADING = "loading",
READY = "ready",
ERROR = "error"
}
/**
* Hook to load an external script. Returns true once the script has finished loading.
*
* @param url {string} url The external script to load
* */
export declare function useScript(url?: string): [boolean, ScriptStatus];