starling-framework
Version:
A fast, productive library for 2D cross-platform development.
14 lines (12 loc) • 406 B
TypeScript
import Error from "openfl/errors/Error";
declare namespace starling.errors
{
/** A NotSupportedError is thrown when you attempt to use a feature that is not supported
* on the current platform. */
export class NotSupportedError extends Error
{
/** Creates a new NotSupportedError object. */
public constructor(message?:string, id?:number);
}
}
export default starling.errors.NotSupportedError;