mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
8 lines
137 B
TypeScript
8 lines
137 B
TypeScript
export function set(args) {
|
|
args.object.page.className = 'styled';
|
|
}
|
|
|
|
export function clear(args) {
|
|
args.object.page.className = '';
|
|
}
|