/* Options: Date: 2024-05-17 04:32:00 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test.servicestack.net //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ReturnBytes.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } // @Route("/return/bytes") export class ReturnBytes implements IReturn { public data: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ReturnBytes'; } public getMethod() { return 'POST'; } public createResponse() { return new Uint8Array(0); } }