| 11 | } from 'shared/brand' |
| 12 | |
| 13 | export interface CardBase { |
| 14 | id: LDbId |
| 15 | ord: Ord |
| 16 | noteId: LDbId |
| 17 | created: number |
| 18 | edited: number |
| 19 | lapses: number |
| 20 | repCount: number |
| 21 | cardSettingId: LDbId | null |
| 22 | due: number |
| 23 | state: number | null |
| 24 | } |
| 25 | |
| 26 | export interface Card extends CardBase { |
| 27 | tags: string |
nothing calls this directly
no outgoing calls
no test coverage detected