修复发布校准验证问题
This commit is contained in:
@@ -11,9 +11,11 @@ interface ManualAdapterFetchInput extends AdapterFetchInput {
|
||||
manualInput: unknown;
|
||||
}
|
||||
|
||||
export function createManualPerformanceAdapter(): PerformanceAdapter & {
|
||||
interface ManualPerformanceAdapter extends Omit<PerformanceAdapter, "fetch"> {
|
||||
fetch(input: ManualAdapterFetchInput): Promise<PerformanceSnapshot>;
|
||||
} {
|
||||
}
|
||||
|
||||
export function createManualPerformanceAdapter(): ManualPerformanceAdapter {
|
||||
return {
|
||||
source: "manual",
|
||||
async fetch(input) {
|
||||
|
||||
Reference in New Issue
Block a user