mirror of
https://github.com/standardnotes/server
synced 2026-01-16 20:04:32 -05:00
11 lines
251 B
TypeScript
11 lines
251 B
TypeScript
import { Uuid } from '@standardnotes/common'
|
|
|
|
import { PredicateAuthority } from './PredicateAuthority'
|
|
import { PredicateName } from './PredicateName'
|
|
|
|
export type Predicate = {
|
|
jobUuid: Uuid
|
|
name: PredicateName
|
|
authority: PredicateAuthority
|
|
}
|