image-in-browser
Version:
Package for encoding / decoding images, transforming images, applying filters, drawing primitives on images on the client side (no need for server Node.js)
23 lines (22 loc) • 408 B
TypeScript
/** @format */
/**
* Enum representing different types of icons.
*/
export declare enum IcoType {
/**
* Represents an invalid icon type.
*/
invalid = 0,
/**
* Represents an ICO icon type.
*/
ico = 1,
/**
* Represents a CUR icon type.
*/
cur = 2
}
/**
* Constant representing the length of the IcoType enum.
*/
export declare const IcoTypeLength = 3;