| 486 | |
| 487 | declare module 'xcode/lib/pbxFile' { |
| 488 | export default class PBXFile implements pbxFile { |
| 489 | constructor(file: string); |
| 490 | basename: string; |
| 491 | lastKnownFileType?: string; |
| 492 | group?: string; |
| 493 | path?: string; |
| 494 | fileEncoding?: number; |
| 495 | defaultEncoding?: number; |
| 496 | sourceTree: string; |
| 497 | includeInIndex?: number; |
| 498 | explicitFileType?: unknown; |
| 499 | settings?: object; |
| 500 | uuid?: string; |
| 501 | fileRef: string; |
| 502 | target?: string; |
| 503 | } |
| 504 | } |
nothing calls this directly
no outgoing calls
no test coverage detected