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