mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 09:23:52 -05:00
Various type improvements, mostly in tests (#8144)
This commit is contained in:
@@ -302,7 +302,7 @@ export type SingleFileCacheKey = {
|
||||
filters?: any;
|
||||
tools: any[];
|
||||
libraries: SelectedLibraryVersion[];
|
||||
files: any[];
|
||||
files: FiledataPair[];
|
||||
};
|
||||
|
||||
export type CmakeCacheKey = Omit<SingleFileCacheKey, 'tools'> & {
|
||||
|
||||
@@ -43,10 +43,10 @@ export type OptPipelineOutput = {
|
||||
};
|
||||
|
||||
export type OptPipelineBackendOptions = {
|
||||
filterDebugInfo: boolean;
|
||||
filterIRMetadata: boolean;
|
||||
fullModule: boolean;
|
||||
noDiscardValueNames: boolean;
|
||||
demangle: boolean;
|
||||
libraryFunctions: boolean;
|
||||
filterDebugInfo?: boolean;
|
||||
filterIRMetadata?: boolean;
|
||||
fullModule?: boolean;
|
||||
noDiscardValueNames?: boolean;
|
||||
demangle?: boolean;
|
||||
libraryFunctions?: boolean;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user