mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-19 11:39:36 +02:00
8 lines
144 B
TypeScript
8 lines
144 B
TypeScript
|
import { Model } from './';
|
||
|
|
||
|
export interface Config extends Model {
|
||
|
key: string;
|
||
|
value: string;
|
||
|
valueType: string;
|
||
|
isLocked: boolean;
|
||
|
}
|