UNPKG
meblog
Version:
latest (2.2.3)
2.2.3
2.2.2
2.2.1
2.2.0
2.1.2
2.1.1
2.1.0
2.0.0
1.0.4
1.0.3
1.0.2
1.0.1
A simple blog engine for personal blogging
github.com/sinzii/meblog
sinzii/meblog
meblog
/
lib
/
core
/
post
/
PostParser.d.ts
6 lines
(5 loc)
•
192 B
TypeScript
View Raw
1
2
3
4
5
6
import { Post }
from
'./Post'
; export
default
abstract
class
PostParser
{
abstract
parse
(
filePath:
string
, separator?:
string
): Post
;
abstract
extractSlug
(
filePath:
string
):
string
; }