版博士V2.0程序
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

IResponseInit.d.ts 212 B

123456789
  1. import IHeaders from './IHeaders';
  2. /**
  3. * Response init.
  4. */
  5. export default interface IResponseInit {
  6. headers?: IHeaders | string[][] | Record<string, string>;
  7. status?: number;
  8. statusText?: string;
  9. }