diff options
| author | Mar0xy <marie@kaifa.ch> | 2023-09-25 01:49:57 +0200 |
|---|---|---|
| committer | Mar0xy <marie@kaifa.ch> | 2023-09-25 01:49:57 +0200 |
| commit | 3fd2b55406fe4d2b7c7fa40208bbb779a2e8351b (patch) | |
| tree | 78d106d29c781d17c9dd730cdd23fe91644767d2 /packages/megalodon/src/entities/source.ts | |
| parent | test: fix lock (diff) | |
| download | sharkey-3fd2b55406fe4d2b7c7fa40208bbb779a2e8351b.tar.gz sharkey-3fd2b55406fe4d2b7c7fa40208bbb779a2e8351b.tar.bz2 sharkey-3fd2b55406fe4d2b7c7fa40208bbb779a2e8351b.zip | |
Revert "test: check old megalodon version"
This reverts commit 89eea5df5286a9fdf2976d41cdbaf0c40dd19b62.
Diffstat (limited to 'packages/megalodon/src/entities/source.ts')
| -rw-r--r-- | packages/megalodon/src/entities/source.ts | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/packages/megalodon/src/entities/source.ts b/packages/megalodon/src/entities/source.ts index 913b02fda7..d87cf55d85 100644 --- a/packages/megalodon/src/entities/source.ts +++ b/packages/megalodon/src/entities/source.ts @@ -1,10 +1,10 @@ /// <reference path="field.ts" /> namespace Entity { - export type Source = { - privacy: string | null; - sensitive: boolean | null; - language: string | null; - note: string; - fields: Array<Field>; - }; + export type Source = { + privacy: string | null + sensitive: boolean | null + language: string | null + note: string + fields: Array<Field> + } } |