14 lines
No EOL
239 B
TypeScript
14 lines
No EOL
239 B
TypeScript
interface MyObjectAppealRef {
|
|
type: object | null;
|
|
title: object | null;
|
|
description: object | null;
|
|
caseType: object | null;
|
|
caseNumber: object | null;
|
|
|
|
[key: string]: any;
|
|
}
|
|
|
|
|
|
export type {
|
|
MyObjectAppealRef
|
|
} |