iceshrimp-legacy/packages/megalodon/lib/src/entities/tag.d.ts

10 lines
203 B
TypeScript

/// <reference path="history.d.ts" />
declare namespace Entity {
type Tag = {
name: string;
url: string;
history: Array<History> | null;
following?: boolean;
};
}