8 lines
305 B
TypeScript
8 lines
305 B
TypeScript
|
|
import ISelectorMatch from '../../query-selector/ISelectorMatch.js';
|
||
|
|
import ICachedResult from './ICachedResult.js';
|
||
|
|
export default interface ICachedMatchesResult extends ICachedResult {
|
||
|
|
result: {
|
||
|
|
match: ISelectorMatch | null;
|
||
|
|
} | null;
|
||
|
|
}
|
||
|
|
//# sourceMappingURL=ICachedMatchesResult.d.ts.map
|