7 lines
204 B
TypeScript
7 lines
204 B
TypeScript
import type { LocaleString } from './LocaleString';
|
|
import type { MetadataSrc } from './MetadataSrc';
|
|
export type DepInfo = {
|
|
description: LocaleString | null;
|
|
optional: boolean;
|
|
} & MetadataSrc;
|