phaser3-rex-plugins-types
Version:
[](https://www.npmjs.com/package/phaser3-rex-plugins-types) [](https://github.com/prettier/prettier) [![B
13 lines (10 loc) • 347 B
TypeScript
declare module 'phaser3-rex-plugins/plugins/xor' {
import Decrypt from 'phaser3-rex-plugins/plugins/string/xor/Decrypt';
import Encrypt from 'phaser3-rex-plugins/plugins/string/xor/Encrypt';
interface xorType {
Encrypt: typeof Encrypt;
Decrypt: typeof Decrypt;
}
const XOR: xorType;
export default XOR;
}