mirror of
https://github.com/pawelmalak/flame.git
synced 2025-08-03 09:55:18 +02:00
Weather settings view. API: select which keys to get from Config
This commit is contained in:
parent
216c12a33c
commit
316bc49f5c
8 changed files with 180 additions and 15 deletions
8
client/src/interfaces/Config.ts
Normal file
8
client/src/interfaces/Config.ts
Normal file
|
@ -0,0 +1,8 @@
|
|||
import { Model } from './';
|
||||
|
||||
export interface Config extends Model {
|
||||
key: string;
|
||||
value: string;
|
||||
valueType: string;
|
||||
isLocked: boolean;
|
||||
}
|
|
@ -5,4 +5,5 @@ export * from './Api';
|
|||
export * from './Weather';
|
||||
export * from './Bookmark';
|
||||
export * from './Category';
|
||||
export * from './Notification';
|
||||
export * from './Notification';
|
||||
export * from './Config';
|
Loading…
Add table
Add a link
Reference in a new issue