7 lines
213 B
TypeScript
7 lines
213 B
TypeScript
import { gitPlugin } from './gitPlugin.js';
|
|
export * from './gitPlugin.js';
|
|
export type * from './types.js';
|
|
export * from './utils/index.js';
|
|
/** @deprecated Use named export instead */
|
|
export default gitPlugin;
|