forked from olcxjas-softworks/LarpixClient
update electron to v43
This commit is contained in:
parent
68ac0beedf
commit
fb6c8b6ee9
5385 changed files with 513060 additions and 123058 deletions
21
electron/node_modules/resedit/dist/data/IconFile.d.ts
generated
vendored
Normal file
21
electron/node_modules/resedit/dist/data/IconFile.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
import IconItem from './IconItem.js';
|
||||
import RawIconItem from './RawIconItem.js';
|
||||
/**
|
||||
* All fields except for 'data' is optional.
|
||||
* Missing fields are replaced by 'data' values when generating binary.
|
||||
*/
|
||||
export interface IconFileItem {
|
||||
width?: number;
|
||||
height?: number;
|
||||
colors?: number;
|
||||
planes?: number;
|
||||
bitCount?: number;
|
||||
data: IconItem | RawIconItem;
|
||||
}
|
||||
export default class IconFile {
|
||||
/** Containing icons */
|
||||
icons: IconFileItem[];
|
||||
constructor();
|
||||
static from(bin: ArrayBuffer | ArrayBufferView): IconFile;
|
||||
generate(): ArrayBuffer;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue