Skip to content

Instantly share code, notes, and snippets.

View mrmeku's full-sized avatar
💭
Chillin like a villain

mrmeku

💭
Chillin like a villain
View GitHub Profile
import { BehaviorSubject, Subject } from 'rxjs';
export interface Breadcrumb {
title: string;
}
export interface MenuOption {
name: string;
image: string;
invoke: () => void;
}
export interface NonContextualAction {
@mrmeku
mrmeku / tasks.json
Last active October 30, 2019 17:07
Super Narwhal Team's tasks.json
{
"version": "2.0.0",
"tasks": [
{
"label": "super-narwhal-devserver",
"type": "ng",
"command": "serve",
"project": "super-awesome-app",
"flags": ["--aot=false"],
"dependsOn": ["my-npm-task-that-runs-first"]