| 56 | * @interface IAsset |
| 57 | */ |
| 58 | export interface IAsset { |
| 59 | name: string; // 资源名称 |
| 60 | type: fileType; // 资源类型 |
| 61 | url: string; // 资源url |
| 62 | lineNumber: number; // 触发资源语句的行号 |
| 63 | } |
| 64 | |
| 65 | /** |
| 66 | * 单条语句接口 |
nothing calls this directly
no outgoing calls
no test coverage detected