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