aboutsummaryrefslogtreecommitdiffstats
path: root/packages/sol-resolver/src/types.ts
blob: b4ba164c81326cdaefd1e3dfd8fc83c362ee2eb7 (plain) (blame)
1
2
3
4
5
6
7
8
9
export interface ContractSource {
    source: string;
    path: string;
    absolutePath: string;
}

export interface ContractSources {
    [key: string]: ContractSource;
}