node-vk-sdk
Version:
VK API SDK for Node.js
14 lines (12 loc) • 344 B
text/typescript
import ApiMethodParam from "./ApiMethodParam";
import {Type} from "../types/Type";
export default class ApiMethodScheme {
constructor(
readonly name: string,
readonly params: ApiMethodParam[],
readonly responseType: Type,
readonly description: string,
readonly isSuperClass: boolean
) {
}
}