nativescript-preferences
Version:
Allows your app to have native settings support
12 lines (11 loc) • 340 B
TypeScript
import { Observable } from 'tns-core-modules/data/observable';
export declare class Common extends Observable {
constructor();
setValue(key: string, value: any): void;
getValue(key: string, defaultValue?: any): any;
openSettings(): void;
clear(): void;
}
export declare class Utils {
static SUCCESS_MSG(): string;
}