a2r
Version:
A2R Framework
11 lines (10 loc) • 312 B
TypeScript
/**
* Allows you to disable client detection
* @param {boolean} value True to force Server Side Simulation
*/
export declare const setForceServerSimulation: (value: boolean) => void;
/**
* Checks if the script is running on the client side
*/
declare const isClient: () => boolean;
export default isClient;