fixed parames of interface for type-check

This commit is contained in:
2026-02-14 06:28:03 +01:00
parent d258bcc919
commit 951fe36da3

View File

@ -44,6 +44,7 @@ $mapUnionType = function (mixed $type) use ($mapType): string {
export interface APIliteActionResponse<T> {
status: 'OK';
data: T;
msg: string;
}
export interface APIliteErrorResponse {
@ -73,6 +74,9 @@ export interface APIliteHelpResponse {
javascript_version: string;
typescript_version: string;
actions: APIliteMethodDoc[];
status: string;
data: string;
msg: string;
}
class <?php echo $this->apiName; ?> {