fp/packages/boop/index.ts

19 lines
314 B
TypeScript
Raw Normal View History

2024-07-10 02:34:23 +00:00
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)
2024-07-10 02:34:23 +00:00
setTimeout(() => {
return main()
}, 2000)
}
main()