pxt-ev3/libs/core/enums.d.ts

26 lines
430 B
TypeScript
Raw Normal View History

2017-07-05 02:17:26 +02:00
// Auto-generated. Do not edit.
2017-07-05 14:06:58 +02:00
/**
* Drawing modes
*/
declare enum Draw {
2017-07-11 14:43:12 +02:00
Normal = 0x00,
Clear = 0x01,
Xor = 0x02,
Fill = 0x04,
Transparent = 0x08,
Double = 0x10,
2017-07-05 14:06:58 +02:00
}
2017-07-05 14:56:13 +02:00
declare enum ScreenFont {
Normal = 0, // FONTTYPE_NORMAL
Small = 1, // FONTTYPE_SMALL
Large = 2, // FONTTYPE_LARGE
Tiny = 3, // FONTTYPE_TINY
}
2017-07-05 02:17:26 +02:00
// Auto-generated. Do not edit. Really.