summaryrefslogtreecommitdiff
path: root/packages/megalodon/src/entities/source.ts
blob: d87cf55d8587b7607bfb998fc1b9a56ab6d82059 (plain)
1
2
3
4
5
6
7
8
9
10
/// <reference path="field.ts" />
namespace Entity {
  export type Source = {
    privacy: string | null
    sensitive: boolean | null
    language: string | null
    note: string
    fields: Array<Field>
  }
}