6 lines
103 B
TypeScript
6 lines
103 B
TypeScript
|
|
export interface App {
|
||
|
|
readonly name: string
|
||
|
|
readonly version: string
|
||
|
|
readonly channel: string
|
||
|
|
}
|