mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-12-11 05:23:51 +01:00
5 lines
137 B
TypeScript
5 lines
137 B
TypeScript
import { SnippetResult } from '../types';
|
|
export declare type SnippetedHit<THit> = THit & {
|
|
_snippetResult?: SnippetResult<THit>;
|
|
};
|