declare namespace openfl.system { /** * The SecurityDomain class represents the current security "sandbox," also * known as a security domain. By passing an instance of this class to * `Loader.load()`, you can request that loaded media be placed in a * particular sandbox. * */ export class SecurityDomain { protected constructor(); /** * Gets the current security domain. * */ static currentDomain: SecurityDomain; } } export default openfl.system.SecurityDomain;