import Collection from '../async/collection' import { ICollectionConfig } from '../async/ICollectionConfig' import { Person } from './Person' export const load_ttl = async (config: ICollectionConfig) => { const data = Collection.create(config) await data.load() console.log(await data.findBy('id', 7)) }