SCompositeType.d.ts 257 B

12345678910111213
  1. export declare enum SCompositeType {
  2. Copy = 0,
  3. DestinationAtop = 1,
  4. DestinationIn = 2,
  5. DestinationOut = 3,
  6. DestinationOver = 4,
  7. Lighter = 5,
  8. SourceAtop = 6,
  9. SourceIn = 7,
  10. SourceOut = 8,
  11. SourceOver = 9,
  12. Xor = 10
  13. }