* fix(web): archived and deleted counts on encryption panel * fix(snjs): yarn build snjs before e2e test suite docker builds
6 lines
171 B
TypeScript
6 lines
171 B
TypeScript
import { SNNote, SNTag, ItemCounts } from '@standardnotes/models'
|
|
|
|
export interface ItemCounterInterface {
|
|
countNotesAndTags(items: Array<SNNote | SNTag>): ItemCounts
|
|
}
|