openfl
Version:
A fast, productive library for 2D cross-platform development.
21 lines (14 loc) • 388 B
TypeScript
declare namespace openfl.net {
export enum SharedObjectFlushStatus {
/**
* Indicates that the flush completed successfully.
*/
FLUSHED = "flushed",
/**
* Indicates that the user is being prompted to increase disk space for the
* shared object before the flush can occur.
*/
PENDING = "pending"
}
}
export default openfl.net.SharedObjectFlushStatus;