8 lines
215 B
TypeScript
8 lines
215 B
TypeScript
/**
|
|
* Guess whether we're being executed by an AI agent
|
|
*
|
|
* It's hard for us to say `false` for sure, so we only respond
|
|
* with `yes` or `don't know`.
|
|
*/
|
|
export declare function guessAgent(): true | undefined;
|