8 lines
179 B
TypeScript
8 lines
179 B
TypeScript
import type { Metadata } from './Metadata';
|
|
import type { PathOrUrl } from './PathOrUrl';
|
|
export type MetadataSrc = {
|
|
metadata: Metadata;
|
|
} | {
|
|
s9pk: PathOrUrl | null;
|
|
};
|