fp/packages/boop/index.ts

19 lines
314 B
TypeScript

import { bell } from 'taco'
import { IPagination } from 'types'
function main() {
const page: IPagination = {
page: 5,
pageCount: 20,
pageSize: 50,
total: 365
}
console.log(bell()+' page:'+page.page)
setTimeout(() => {
return main()
}, 2000)
}
main()