7 lines
96 B
TypeScript
7 lines
96 B
TypeScript
|
|
interface DataLink {
|
||
|
|
name: string | null;
|
||
|
|
link: string | null;
|
||
|
|
}
|
||
|
|
|
||
|
|
export type { DataLink };
|