Sign in
chromium
/
devtools
/
devtools-frontend
/
refs/heads/chromium/5259
/
.
/
node_modules
/
parse-literals
/
src
/
parseLiterals.d.ts
blob: b0aba8f81f1636e07e20dbc4a8e3bff7b13a88ab [
file
] [
log
] [
blame
] [
edit
]
import
{
Template
,
Strategy
}
from
'./models'
;
export
interface
ParseLiteralsOptions
{
fileName
?:
string
;
strategy
?:
Partial
<
Strategy
<any>
>;
}
export
declare
function
parseLiterals
(
source
:
string
,
options
?:
ParseLiteralsOptions
):
Template
[];