blob: e8a0438311d6e50b64b41790a0513114f2f2cb2b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
const METHOD_REQUEST = 'request';
const METHOD_RESPONSE = 'response';
const WINDOWS_CREATE = 'windows.create';
const WINDOWS_REMOVE = 'windows.remove';
export {
METHOD_REQUEST,
METHOD_RESPONSE,
WINDOWS_CREATE,
WINDOWS_REMOVE,
};
|