ニジカ投稿局 https://tv.nizika.tv
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

16 lines
272 B

  1. export type IPCReponse <T extends IPCReponseData = undefined> = {
  2. success: boolean
  3. error?: string
  4. data?: T
  5. }
  6. export type IPCReponseData =
  7. // list registered
  8. {
  9. servers: {
  10. runnerName: string
  11. runnerDescription: string
  12. url: string
  13. }[]
  14. }