mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
Co-authored-by: cirospaciari <cirospaciari@users.noreply.github.com> Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
13 lines
212 B
TypeScript
13 lines
212 B
TypeScript
// Original file: test/fixtures/test_service.proto
|
|
|
|
|
|
export interface Response {
|
|
'count'?: (number);
|
|
'message'?: (string);
|
|
}
|
|
|
|
export interface Response__Output {
|
|
'count': (number);
|
|
'message': (string);
|
|
}
|