@veecode-platform/safira-cli
Version:
Generate a microservice project from your spec.
14 lines (13 loc) • 389 B
TypeScript
export declare class JavaInterfaceObject {
static _annotationRegex: RegExp;
static _methodRegex: RegExp;
static _importRegex: RegExp;
static _extendRegex: RegExp;
private _classString;
constructor(classString: string);
get annotations(): string[];
get extends(): string[];
get imports(): string[];
get methods(): string[];
toString(): string;
}