<

{{title}}

{{file.summary.functions.pct}}%

Functions
{{file.summary.functions.covered}}/{{file.summary.functions.total}}

{{file.summary.branches.pct}}%

Branches
{{file.summary.branches.covered}}/{{file.summary.branches.total}}

{{file.summary.lines.pct}}%

Lines
{{file.summary.lines.covered}}/{{file.summary.lines.total}}
          
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
                
/** 
 * `qianapp://` 协议的 `result` 已知值常量。 
 * 
 * 字符串原值透出,常量便于客户用 `===` 比较;建议在 switch 的 default 分支兜底未知值。 
 */ 
export class SignResultStatus { 
  /** 操作成功 */ 
  public static readonly SUCCESS: string = 'success'; 
 
  /** 操作失败 */ 
  public static readonly FAIL: string = 'fail'; 
 
  private constructor() {} 
} 

              
Code coverage generated by bjc at {{date}}