當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript incident.Incident函數代碼示例

本文整理匯總了TypeScript中incident.Incident函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript Incident函數的具體用法?TypeScript Incident怎麽用?TypeScript Incident使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了Incident函數的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: createMinArrayLengthError

export function createMinArrayLengthError(array: ArrayLike<any>, min: number): MinArrayLengthError {
  return Incident(name, {array, min}, format);
}
開發者ID:demurgos,項目名稱:via-type,代碼行數:3,代碼來源:min-array-length.ts

示例2: createInvalidTimestampError

export function createInvalidTimestampError(date: Date): InvalidTimestampError {
  return Incident(name, {date}, format);
}
開發者ID:demurgos,項目名稱:via-type,代碼行數:3,代碼來源:invalid-timestamp.ts

示例3: createInvalidFloat64Error

export function createInvalidFloat64Error(value: any, source?: any): InvalidFloat64Error {
  return Incident(name, {value, source}, format);
}
開發者ID:demurgos,項目名稱:via-type,代碼行數:3,代碼來源:invalid-float64.ts

示例4: createPatternNotMatchedError

export function createPatternNotMatchedError(pattern: RegExp, string: string): PatternNotMatchedError {
  return Incident(name, {pattern, string}, format);
}
開發者ID:demurgos,項目名稱:via-type,代碼行數:3,代碼來源:pattern-not-matched.ts

示例5: createMinUcs2StringLengthError

export function createMinUcs2StringLengthError(string: string, min: number): MinUcs2StringLengthError {
  return Incident(name, {string, min}, format);
}
開發者ID:demurgos,項目名稱:via-type,代碼行數:3,代碼來源:min-ucs2-string-length.ts

示例6: createLowerCaseError

export function createLowerCaseError(string: string): LowerCaseError {
  return Incident(name, {string}, format);
}
開發者ID:demurgos,項目名稱:via-type,代碼行數:3,代碼來源:lower-case.ts

示例7: createMaxCodepointsError

export function createMaxCodepointsError(string: string, count: number, max: number): MaxCodepointsError {
  return Incident(name, {string, count, max}, format);
}
開發者ID:demurgos,項目名稱:via-type,代碼行數:3,代碼來源:max-codepoints.ts

示例8: createInvalidIntegerError

export function createInvalidIntegerError(value: number, source?: any): InvalidIntegerError {
  return Incident(name, {value, source}, format);
}
開發者ID:demurgos,項目名稱:via-type,代碼行數:3,代碼來源:invalid-integer.ts

示例9: createInvalidArrayItemsError

export function createInvalidArrayItemsError(invalid: Map<number, Error>): InvalidArrayItemsError {
  return Incident(name, {invalid});
}
開發者ID:demurgos,項目名稱:via-type,代碼行數:3,代碼來源:invalid-array-items.ts

示例10: createFiniteNumberError

export function createFiniteNumberError(value: number): FiniteNumberError {
  return Incident(name, {value}, format);
}
開發者ID:demurgos,項目名稱:via-type,代碼行數:3,代碼來源:finite-number.ts


注:本文中的incident.Incident函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。