fp/packages/boop/index.ts

19 lines
338 B
TypeScript
Raw Normal View History

2024-07-15 16:07:04 +00:00
import { bell } from '@futureporn/taco'
import { IPagination } from '@futureporn/types'
2024-07-10 02:34:23 +00:00
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()