mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-16 14:11:50 +00:00
10 lines
142 B
TypeScript
10 lines
142 B
TypeScript
![]() |
let isAPIValue = false;
|
||
|
|
||
|
export function isAPI() {
|
||
|
return isAPIValue;
|
||
|
}
|
||
|
|
||
|
export function setIsAPI(value: boolean) {
|
||
|
isAPIValue = value;
|
||
|
}
|