mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-05-04 04:22:33 +02:00
8 lines
213 B
TypeScript
8 lines
213 B
TypeScript
import { extensions } from "vscode";
|
|
|
|
export class Copilot {
|
|
public static async isInstalled(): Promise<boolean> {
|
|
const copilotExt = extensions.getExtension(`GitHub.copilot`);
|
|
return !!copilotExt;
|
|
}
|
|
} |