iceshrimp/packages/megalodon/src/entities/source.ts
ThatOneCalculator 241d29fb4d chore: 🎨 format
2023-07-13 18:32:23 -07:00

10 lines
205 B
TypeScript

/// <reference path="field.ts" />
namespace Entity {
export type Source = {
privacy: string | null;
sensitive: boolean | null;
language: string | null;
note: string;
fields: Array<Field>;
};
}