(text: string)
| 4 | import { sendNotification } from 'services/slack'; |
| 5 | |
| 6 | function getResult(text: string) { |
| 7 | let result = text.split(/\(.+\)/).join(''); |
| 8 | return result.match(/\d/g)?.join(''); |
| 9 | } |
| 10 | |
| 11 | async function query(site: string) { |
| 12 | const result = await axios.get( |