mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 03:31:45 +08:00

* chore: remove critical circular dependencies * chore: fix tslint errors * chore: remove platform specific types from interfaces * chore: update unit tests polyfills * fix: incorrect null check * chore: update api.md file * test: improve test case * chore: apply comments * test: avoid page style leaks in tests
9 lines
129 B
TypeScript
9 lines
129 B
TypeScript
let resources: any = {};
|
|
|
|
export function get() {
|
|
return resources;
|
|
}
|
|
|
|
export function set(res: any) {
|
|
resources = res;
|
|
} |