khalyomede/gridsome-plugin-htaccess

View on GitHub
src/interface/ICustomContent.ts

Summary

Maintainability
A
0 mins
Test Coverage
interface ICustomContent {
    order: "before" | "after";
    content: string;
}

export default ICustomContent;